home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / xml4j.jar / com / ibm / xml / framework / XMLDocumentHandler.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-08-30  |  693 b   |  30 lines

  1. package com.ibm.xml.framework;
  2.  
  3. public interface XMLDocumentHandler {
  4.    boolean sendCharDataAsCharArray();
  5.  
  6.    void startDocument(int var1, int var2, int var3) throws Exception;
  7.  
  8.    void endDocument() throws Exception;
  9.  
  10.    void startElement(int var1, int var2) throws Exception;
  11.  
  12.    void endElement(int var1) throws Exception;
  13.  
  14.    void startEntityReference(int var1) throws Exception;
  15.  
  16.    void endEntityReference(int var1) throws Exception;
  17.  
  18.    void characters(int var1, boolean var2) throws Exception;
  19.  
  20.    void ignorableWhitespace(int var1, boolean var2) throws Exception;
  21.  
  22.    void processingInstruction(int var1, int var2) throws Exception;
  23.  
  24.    void comment(int var1) throws Exception;
  25.  
  26.    void characters(char[] var1, int var2, int var3, boolean var4) throws Exception;
  27.  
  28.    void ignorableWhitespace(char[] var1, int var2, int var3, boolean var4) throws Exception;
  29. }
  30.